void setup() {
	Serial.begin(9600);
	Serial.println(secti(10,11));
}

void loop(){
}

int secti(int a, int b){
	int soucet = a + b;
	return soucet;
}